home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000115_news@columbia.edu _Mon Sep 27 09:21:21 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  1KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA21504
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 27 Sep 1999 09:21:20 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA15956
  7.     for kermit.misc@watsun.cc.columbia.edu; Mon, 27 Sep 1999 09:11:20 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: no_spam@adams.patriot.net ()
  10. Subject: CLEAR failure?
  11. Date: Mon, 27 Sep 1999 13:10:13 GMT
  12. Organization: Posted via Supernews, http://www.supernews.com
  13. Message-ID: <ruur5lke3i571@corp.supernews.com>
  14. To: kermit.misc@columbia.edu
  15.  
  16. This loop in my MS-Kermit 3.15 dialing script appears to be
  17. infinite. Is there something I'm missing about the CLEAR and
  18. REINPUT commands? I would expect REINPUT 0 <anything> to fail
  19. after the input buffer has been cleared.
  20.  
  21.     clear
  22. :clear_loop
  23.     reinput 0 CARRIER
  24.     if failure forward clear_exit
  25.     echo DEBUG: Buffer did not clear
  26.     clear
  27.     pause 1
  28.     if failure forward user_cancelled
  29.     goto clear_loop
  30. :clear_exit
  31.  
  32. Thanks,
  33.  
  34. David Winfrey
  35. first_initial L last_initial at patriot dot net
  36.